home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Digitalfoto 118
/
Digitalfoto 118.iso
/
mac
/
programas
/
00
/
start.swf
/
scripts
/
__Packages
/
mx
/
skins
/
SkinElement.as
Wrap
Text File
|
2009-11-16
|
552b
|
27 lines
class mx.skins.SkinElement extends MovieClip
{
function SkinElement()
{
super();
}
static function registerElement(name, className)
{
Object.registerClass(name,className != undefined ? className : mx.skins.SkinElement);
_global.skinRegistry[name] = true;
}
function __set__visible(visible)
{
this._visible = visible;
}
function move(x, y)
{
this._x = x;
this._y = y;
}
function setSize(w, h)
{
this._width = w;
this._height = h;
}
}